home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / varia / egebook.lha / ege.book / 9 / format.C < prev    next >
C/C++ Source or Header  |  1992-06-04  |  427b  |  13 lines

  1. // program illustrates formatted output
  2.  
  3. #include <stream.h>         // definitions for stream IO
  4. #include <stdio.h>          // definitions for C style IO
  5.  
  6. main(){
  7.     int cm = 100;                 // integer variable initialization
  8.     const float convert = 2.54;   // floating point constant
  9.  
  10.     cout << form("%d centimeters are %f inches\n",cm,cm/convert);
  11.     printf("%d centimeters are %f inches\n",cm,cm/convert);
  12. }   
  13.